* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #3d3d3d;
    background: #E8ECF6;
}

.icon {
    width: 20px;
    height: 20px;
    fill: #5a5a5a;
    flex-shrink: 0;
}

.icon-white {
    fill: white;
}

.icon-brown {
    fill: #778DBF;
}

.info-bar {
    background: #C2CEE3;
    padding: 0.8rem;
    text-align: center;
    border-bottom: 1px solid #A7B7D5;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
}

.info-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
    white-space: nowrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #5a5a5a;
}

.store-link {
    color: #5a5a5a;
    text-decoration: none;
    font-weight: 500;
}
.store-link:hover {
    opacity: 0.8;
}

header {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 40px;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(78, 95, 143, 0.1);
    backdrop-filter: blur(10px);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.features {
    background: linear-gradient(135deg, #A7B7D5 0%, #C2CEE3 100%);
    padding: 80px 2rem;
    margin-top: 140px;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    z-index: 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #778DBF;
    font-family: 'Georgia', serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(78, 95, 143, 0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature h3 {
    font-size: 0.975rem;
    margin-bottom: 1rem;
    color: #778DBF;
}

.feature p {
    color: #6a6a6a;
    line-height: 1.7;
}

.products {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(78, 95, 143, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #C2CEE3;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(78, 95, 143, 0.2);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #778DBF;
}

.product-info p {
    color: #6a6a6a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.3rem 0;
    color: #5a5a5a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features .icon {
    width: 18px;
    height: 18px;
}

.about {
    background: linear-gradient(135deg, #C2CEE3 0%, #C2CEE3 100%);
    padding: 80px 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #778DBF;
    font-family: 'Georgia', serif;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.about-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(78, 95, 143, 0.1);
}

.about-item p {
    font-size: 1.1rem;
    color: #5a5a5a;
    line-height: 1.8;
}

.contact {
    background: linear-gradient(135deg, #778DBF 0%, #778DBF 100%);
    color: white;
    padding: 80px 2rem;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: 'Georgia', serif;
}

.contact h3 {
    font-size: 1.125rem;
    margin: 3rem 0 1rem;
    font-family: 'Georgia', serif;
}

.contact-info {
    max-width: 1000px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.contact-item .icon {
    width: 22px;
    height: 22px;
}

.online-order {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.online-order p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, opacity 0.3s;
    font-size: 1.1rem;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.social-links .icon {
    width: 24px;
    height: 24px;
}

.store-visit {
    max-width: 700px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.store-visit p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

footer {
    background: #4E5F8F;
    color: #A7B7D5;
    text-align: center;
    padding: 2rem;
}

/* ----------------- Responsive ----------------- */

@media (max-width: 768px) {
  .product-grid,
  .features-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  /* FIXED INFO BAR FOR MOBILE */
  .info-bar-content {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.6rem;
    white-space: nowrap;
  }

  .info-item {
    flex: 0 0 auto;
    font-size: 0.85rem;
  }

  .info-bar-content span,
  .info-bar-content a {
    white-space: nowrap;
  }

  .logo img {
    height: 60px;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Remove default blue color from all links while keeping link functionality */
a,
a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  opacity: 0.9;
}
